home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UTIL / SCREEN / CURSES01 / minix / c / longname < prev    next >
Text File  |  1992-02-29  |  1KB  |  38 lines

  1. /****************************************************************/
  2. /* Longname() routine of the PCcurses package            */
  3. /*                                */
  4. /****************************************************************/
  5. /* This version of curses is based on ncurses, a curses version    */
  6. /* originally written by Pavel Curtis at Cornell University.    */
  7. /* I have made substantial changes to make it run on IBM PC's,    */
  8. /* and therefore consider myself free to make it public domain.    */
  9. /*        Bjorn Larsson (...mcvax!enea!infovax!bl)    */
  10. /****************************************************************/
  11. /* 1.0:    Release:                    870515    */
  12. /****************************************************************/
  13. /* Modified to run under the MINIX operating system by Don Cope */
  14. /* These changes are also released into the public domain.      */
  15. /*                             900906  */
  16. /****************************************************************/
  17.  
  18. #include <curses.h>
  19. #include "curspriv.h"
  20.  
  21. /****************************************************************/
  22. /* Longname() returns a pointer to a string describing the    */
  23. /* user terminal.                        */
  24. /****************************************************************/
  25.  
  26. char *longname()
  27.   {
  28. #ifdef ARCH
  29.   return("Archimedes UnixLib");
  30. #else
  31. #ifdef MINIX
  32.   return("MINIX OS");
  33. #else
  34.   return("IBM PC BIOS");
  35. #endif
  36. #endif
  37.   }/* longname */
  38.